HTMLify
index.html
Views: 390 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Armstrong Checker in JavaScript</title> <link rel="stylesheet" href="Armstrong.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <div class="wrapper"> <header> <h1>Armstrong Checker</h1> <p>Enter any number here to know whether it is Armstrong or not!!</p> </header> <div class="inputs"> <input type="number" spellcheck="false" placeholder="Enter any number"> <button>Check Armstrong </button> </div> <p class="info-txt"></p> </div> <script src="Armstrong.js"></script> </body> </html> |